Fixes a size calculation bug when enabled bits in XFEATURE_MASK (xcr0)
aren't contiguous.
Current for_loop will stop when xcr0 feature bit is 0. But in reality,
the bits can be non-contiguous. One example is that LWP is bit 62 on
AMD platform. This patch iterates through all bits to calculate the
size for enabled features.
Signed-off-by: Wei Huang <wei.huang2@amd.com>
/* EBX value of main leaf 0 depends on enabled xsave features */
if ( count == 0 && v->arch.xcr0 )
{
- for ( sub_leaf = 2;
- (sub_leaf < 64) && (v->arch.xcr0 & (1ULL << sub_leaf));
- sub_leaf++ )
+ /* reset EBX to default value first */
+ *ebx = 576;
+ for ( sub_leaf = 2; sub_leaf < 64; sub_leaf++ )
{
+ if ( !(v->arch.xcr0 & (1ULL << sub_leaf)) )
+ continue;
domain_cpuid(v->domain, input, sub_leaf, &_eax, &_ebx, &_ecx,
&_edx);
if ( (_eax + _ebx) > *ebx )